ATM 623: Climate Modeling

Brian E. J. Rose, University at Albany

Orbital variations and insolation

About these notes:

This document uses the interactive IPython notebook format (now also called Jupyter). The notes can be accessed in several different ways:

Many of these notes make use of the climlab package, available at https://github.com/brian-rose/climlab

The purpose of this assignment is two-fold:

  1. Get you familiar with doing orbital and insolation calculations with climlab
  2. Introduce you to some modern twists on the Astronomical Theory of the ice ages.

This assignment is due Thursday April 2.

Early Pleistocene Glacial Cycles and the Integrated Summer Insolation Forcing

Although the causes of the ice ages have been discussed for over 150 years, there are still many unsolved problems.

Go back and look at the timeseries of global ice volume we showed in Section 1 of the notes on Orbital variations

The most recent glaciations (the "Late Pleistocene") have been large in amplitude and occur on a roughly 100 kyr timescale. The earlier glaciations were smaller in magnitude and occurred on shorter 40 kyr timescales -- apparently in sync with obliquity variations.

One very big outstanding question is this:

Why did the dominant frequency for the ice ages change from 40 kyr to 100 kyr roughly 800 kyr ago?

We are not going to answer that here. There is, however, a very nice clear explanation for the obliquity-pacing of the Early Pleistocene.

This has been presented by Peter Huybers in this paper:

Huybers, P. (2006). Early Pleistocene glacial cycles and the integrated summer insolation forcing. Science, 313:508–511.

First, read the paper. I will distribute a pdf of the paper through the class web page.

Here is Figure 2 from the paper:

In [1]:
from IPython.display import Image
Image('../images/Huybers_Fig2.png', width=800)
Out[1]:

Your tasks is to reproduce these orbital / insolation calculations using the climlab tools. Specifically:

  1. Reproduce the blue curve in Fig. 2A: number of days per year that insolation is above 275 W m$^{-2}$ at 65ÂșN, between 2000 and 1000 kyrs before present.

  2. Reproduce the red curve in Fig. 2C: Integrated summer insolation: the total accumulated insolation for every day for which this insolation is above the threshold of 275 W m$^{-2}$.

  3. Reproduce the red curve in Fig. 2A: Average summer insolation intensity. This is the integrated summer insolation above the intensity threshold divided by the number of seconds during which the insolation threshold is exceeded. (Preferably plot this on the same graph as the number of days to reproduce Fig. 2A completely).

[Back to ATM 623 notebook home](../index.html)

Credits

The author of this notebook is Brian E. J. Rose, University at Albany.

It was developed in support of ATM 623: Climate Modeling, a graduate-level course in the Department of Atmospheric and Envionmental Sciences, offered in Spring 2015.